vcProcessFlowStep
Flow step is one step in flow group's sequence of steps and container for flow step properties. Flow step may contain one or more process groups.
See in: Overview
Module: vcProcessModel
Parent: vcObject
Children -
Referenced by: vcFeedOptionFlowInfo.FlowStep, vcGetFlowStepStatement.FlowStep, vcNextProcessFlowInfo.FlowStep, vcProcessFlowState.FlowStep, ... (see more)
vcFeedOptionFlowInfo.FlowStep
vcGetFlowStepStatement.FlowStep
vcNextProcessFlowInfo.FlowStep
vcProcessFlowState.FlowStep
vcProcessSequence.createStep()
vcProcessSequence.createStepFrom()
Properties
Learn how to use properties here. The properties are also inherited from the parent class.
| Name | Type | Access | Description |
| Groups | vcObservableList[vcProcessGroup] | R | Gets a list of process groups in the step. |
| IsOptional | Boolean | RW | Gets or sets a value which defines if the products can potentially skip this flow step in their flow sequence. |
| Name | String | RW | Gets or sets the name of flow step. |
| ProcessConfigurations | vcObservableList[vcFlowStepProcessConfiguration] | R | Gets a read-only observable list of flow step process configuration instances, affecting process group instances in this process flow step. |
| ProcessMode | vcProcessMode | RW | Gets or sets a value which defines how products go through this flow step. |
| Properties | vcPropertyContainer | R | Gets the properties of this flow step. |
Methods
Learn how to use methods here. The methods are also inherited from the parent class.
| Name | Return Type | Parameters | Description |
| delete | None | None | Deletes this flow step instance. |
| endBatch | None | None | Ends batch updating of groups and applies delayed updates to process configurations. |
| insertGroup | vcProcessGroup | vcProcessGroup group, Optional Keyword[index = Integer] | Inserts the given process group into Groups.See moreParameters: group (vcProcessGroup): A group to insert. Optional: index (Integer): Index to insert the given group at. If index is omitted or out of range, the group is appended at the end of the list. |
| removeGroup | None | Integer index | Removes the given process group from Groups.See moreParameters: index (Integer): Zero based index of the group to remove. Exceptions: IndexError: When the given index is out of bounds. |
| startBatch | None | None | Starts batch update of groups and delay updating process configurations until 'endBatch' is called. |